home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / Archiving / ArchivingNSObject / Owner.h < prev    next >
Encoding:
Text File  |  1994-09-10  |  511 b   |  27 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import <foundation/NSArray.h>
  4.  
  5. #import "NSAuthor.h"
  6.  
  7. @interface Owner:Object
  8. {
  9.     id    controller;
  10.     id    dataSource;
  11.     id    textObject;
  12.     NSArray     *eoArray;
  13.     NSAuthor *eoAuthor;
  14. }
  15.  
  16. - appDidInit:sender;
  17. - readObject:sender;
  18. - writeObject:sender;
  19. - (NSString *)applicationPath;
  20. - (BOOL) archiveThisNSObject:(NSObject *)nsobject;
  21. - (NSObject *)unarchiveNSObject;
  22. @end
  23.  
  24. // Add a category to the text object to show results
  25. @interface Text (printResults)
  26. - appendText:(const char *)newText;
  27. @end